alert("Your CD could not be found. Please insert it into the drive and try again.")
return 0
else
return drive
end if
end
on Jumpmovie moviePath
global numtries
set numtries to numtries + 1
set drive to getdrive()
if stringp(drive) then
go(1, drive & moviePath)
else
if numtries < 3 then
Jumpmovie(moviePath)
else
alert("The Net Power CD could not be found. This program will now quit as gracefully as possible under the circumstances, though you should really try to get a copy of the Net Power because it contains some truly cool stuff.")
halt()
end if
end if
end
on launch moviePath
global numtries
set drive to getdrive()
if stringp(drive) then
open(drive & moviePath)
else
if numtries = 1 then
open(moviePath)
else
alert("The Net Power CD could not be found. This program will now quit as gracefully as possible under the circumstances, though you should really try to get a copy of the Net Power because it contains some truly cool stuff.")